Skip to main content
Version: 1.0.2

Change PIN

The API enables to set new PIN or to change PIN for an activated physical card.

Method: POST

{{URL}}/cardv2

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParametersDescription

reference

Optional

String

Unique reference ID of the request

Sample Value: "visadps100008"

product

Mandatory

String

Name of the product associated with the card

Sample Value: "DEFAULT"

program

Mandatory

String

Name of the program to which the card product is mapped

Sample Value: "DEFAULT"

channel

Mandatory

Enum

Processing channel through which the card transaction happens

Valid Values:

PULSE

VISA_DPS

Sample Value: "VISA_DPS"

transactionType

Mandatory

String

Type of operation / transaction

Constant Value: "PIN_CHANGE"

customerId

Mandatory

String

Unique ID of customer who holds the card

Sample Value: "100000000006001"

accountNumber

Mandatory

String

Account number linked to the card

Sample Value: "400320588344662"

cardId

Mandatory

String

Unique ID of the card

Sample Value: "6f586be7bf1c44b8b4ea11b2e2510e25"

newPIN

Mandatory

String

New PIN that is to be updated

Sample Value: "fbbVg8NQFDwa5rtkjR+Wa4wqiZwUWoxaUVLO2fTFgeYvQ9RGBfyl6H0rpCvtEoEbhbVFTuJGX8hdgjfptOynnrKD5DUFpK0RDi+URuKIunzbiQ9Gq6iqs54S2LaWH0ZVwsvPb4HiP1mOX88oV7xZc7rzWcG1nOBErogItPTijlG/UMvVWU0SYMd+fjBNqMcdMeFe3GLch3KMFpAC4yC+sTSyLj9W8C0vOhF2bA3voxX2Vb5Xv27oR8Xn6jKoR+/ZzK0Ch3aF06P+Xxto/ZGZyvdxsN+s2ldEu+vHbK6QwXC30/U+J8TFOQ0rIbZny3LOtaBK0sbflAdLNlQwaFmCfQ=="

isEncrypt

Mandatory

String

CVV should be mandatorily encrypted to ensure protection of card holder information

Constant Value: "true"


curl --location --globoff --request GET '{{URL}}/cardv2' \
--header 'Content-Type: application/json' \
--data '{"method":"ledger.CARD.request","id":"1","params":{"payload":{"reference":"visadps100008","product":"DEFAULT","program":"DEFAULT","channel":"VISA_DPS","transactionType":"PIN_CHANGE","customerId":"100000000006001","accountNumber":"400320588344662","cardId":"6f586be7bf1c44b8b4ea11b2e2510e25","newPIN":"fbbVg8NQFDwa5rtkjR+Wa4wqiZwUWoxaUVLO2fTFgeYvQ9RGBfyl6H0rpCvtEoEbhbVFTuJGX8hdgjfptOynnrKD5DUFpK0RDi+URuKIunzbiQ9Gq6iqs54S2LaWH0ZVwsvPb4HiP1mOX88oV7xZc7rzWcG1nOBErogItPTijlG/UMvVWU0SYMd+fjBNqMcdMeFe3GLch3KMFpAC4yC+sTSyLj9W8C0vOhF2bA3voxX2Vb5Xv27oR8Xn6jKoR+/ZzK0Ch3aF06P+Xxto/ZGZyvdxsN+s2ldEu+vHbK6QwXC30/U+J8TFOQ0rIbZny3LOtaBK0sbflAdLNlQwaFmCfQ==","isEncrypt":true},"api":{"signature":"{{signature}}","apiKey":"{{Api-key}}","credential":"{{cred}}"}}}'

Body


{
"method": "ledger.CARD.request",
"id": "1",
"params": {
"payload": {
"reference": "visadps100008",
"product": "DEFAULT",
"program": "DEFAULT",
"channel": "VISA_DPS",
"transactionType": "PIN_CHANGE",
"customerId": "100000000006001",
"accountNumber": "400320588344662",
"cardId": "6f586be7bf1c44b8b4ea11b2e2510e25",
"newPIN": "fbbVg8NQFDwa5rtkjR+Wa4wqiZwUWoxaUVLO2fTFgeYvQ9RGBfyl6H0rpCvtEoEbhbVFTuJGX8hdgjfptOynnrKD5DUFpK0RDi+URuKIunzbiQ9Gq6iqs54S2LaWH0ZVwsvPb4HiP1mOX88oV7xZc7rzWcG1nOBErogItPTijlG/UMvVWU0SYMd+fjBNqMcdMeFe3GLch3KMFpAC4yC+sTSyLj9W8C0vOhF2bA3voxX2Vb5Xv27oR8Xn6jKoR+/ZzK0Ch3aF06P+Xxto/ZGZyvdxsN+s2ldEu+vHbK6QwXC30/U+J8TFOQ0rIbZny3LOtaBK0sbflAdLNlQwaFmCfQ==",
"isEncrypt": true
},
"api": {
"signature": "{{signature}}",
"apiKey": "{{Api-key}}",
"credential": "{{cred}}"
}
}
}

Response: 200

Response Parameters
ParametersDescription

Id

String

Response ID echoed from the request ID

Sample Value: "1"

result

Object

api

Object

type

String

Acknowledgement for type of operation requested for

Sample Value: "PIN_CHANGE_ACK"

reference

String

Unique reference for the API response

Sample Value: "REFvisadps100008"

dateCreated

Number

Unix timestamp of the response was created

Sample Value: 1732086021

originalReference

String

Original reference ID taken from the request

Sample Value: "visadps100008"


{
"id": "1",
"result": {
"api": {
"type": "PIN_CHANGE_ACK",
"reference": "REFvisadps100008",
"dateCreated": 1732086021,
"originalReference": "visadps100008"
}
}
}